//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
namespace LargoCommon.Music
{
/// Type of band.
public enum MusicalBand {
/// Type of band.
Any = 0,
/// Type of band.
BassTones = 1,
/// Type of band.
MiddleTones = 2,
/// Type of band.
HighTones = 3,
/// Type of band.
BassBeat = 4,
/// Type of band.
MiddleBeat = 5,
/// Type of band.
HighBeat = 6
}
}